read a collection of tables from specified file.
Arguments:
file
file in which table is contained
tables
returned collection of tables
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | file | |||
type(TableCollection), | intent(out) | :: | tables |
read a collection of tables from specified unit. File is already open.
Arguments:
unit
unit of file in which table is contained
tables
returned collection of tables
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=short), | intent(in) | :: | unit | |||
type(TableCollection), | intent(out) | :: | tables |
read a table from specified file. File is not yet open.
If id is not specified, in a file containing multiple tables,
the first table is read
Arguments:
file
file in which table is contained
tab
returned table
id
optional, id of table to read
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | file | |||
type(Table), | intent(out) | :: | tab | |||
character(len=*), | intent(in), | optional | :: | id |
read a table from specified file unit. File is already open.
Arguments:
unit
file in which table is contained
tab
returned table
id
optional, id of table to read
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=short), | intent(in) | :: | unit | |||
type(Table), | intent(out) | :: | tab | |||
character(len=*), | intent(in), | optional | :: | id |
create a new table from scratch and initialize variables
Arguments:
tab
returned table
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(Table), | intent(out) | :: | tab |